#!/bin/sh

if pidof clock > /dev/null; then
	touch /tmp/.clock_kill
else
	/var/bin/clock &
fi
exit 0
